home *** CD-ROM | disk | FTP | other *** search
/ Chip 2005 August (Alt) / CHIP 2005-08.1.iso / program / guvenlik / syslinux-3.07.exe / com32 / lib / strtox.c < prev    next >
Encoding:
C/C++ Source or Header  |  2004-11-10  |  229 b   |  14 lines

  1. /*
  2.  * strtox.c
  3.  *
  4.  * strto...() functions, by macro definition
  5.  */
  6.  
  7. #include <stddef.h>
  8. #include <inttypes.h>
  9.  
  10. TYPE NAME (const char *nptr, char **endptr, int base)
  11. {
  12.   return (TYPE) strntoumax(nptr, endptr, base, ~(size_t)0);
  13. }
  14.